import * as jwt from "jsonwebtoken";import * as jwksClient from "jwks-rsa";...serverConfig// Initialize the JWKS clientconst client = jwksClient({ jwksUri: "https://waas.sequence.app/.well-known/jwks.json", cache: true, cacheMaxAge: 86400000, // 1 day});// Should be equal to the audience claim in the JWT that you want to verify which will be of the form https://sequence.build/project/*projectID*const EXPECTED_AUDIENCE = "https://sequence.build/project/*PROJECT_ID*"